ret:=rtEZRequestA('New for Rel. 2.0 of ReqTools(V38) is'\10'the possibility to define characters in the'\10'buttons as keyboard shortcuts.'\10'As you can see these characters are underlined.',
ret:=rtEZRequestA ("You may also use C-style formatting codes in the body text."\10"Like this:"\10\10"The number %%ld is written %%s. will give:"\10\10"The number %ld is written %s."\10\10"IF you also pass '5' and 'five' to rtEZRequestA().",
"_Proceed", Nil, ^Args[0],^Tags[0]);
Tags[0]:=TagItem(RT_IDCMPFlags,DISKINSERTED);
Tags[1]:=TagItem(RT_Underscore,long('_'));
Tags[2]:=TagItem(TAG_END,0);
ret:=rtEZRequestA ("It is also possible to pass extra IDCMP flags"\10"that will satisfy rtEZRequestA(). This requester"\10"has had DISKINSERTED passed to it."\10"(Try inserting a disk).",
"_Continue", Nil, Nil,^Tags[0]);
IF ret=DISKINSERTED THEN
ret:=rtEZ("You inserted a disk.","I did")
ELSE
ret:=rtEZ("You used the 'Continue' gadget"+up+
"to satisfy the requester.","I did");
Tags[0]:=TagItem(RT_ReqPos,REQPOS_TOPLEFTSCR);
Tags[1]:=TagItem(RT_Underscore,long('_'));
Tags[2]:=TagItem(TAG_END,0);
ret:=rtEZRequestA("Finally, it is possible to specify the position"\10"of the requester."\10"E.g. at the top left of the screen, like this."\10"This works for all requesters, not just rtEZRequestA()!",
"_Amazing",Nil,Nil,^Tags[0]);
Tags[0]:=TagItem(RT_ReqPos,REQPOS_CENTERSCR);
Tags[2]:=TagItem(TAG_END,0);
ret:=rtEZ2("RTDemo V0.06 by PackMAN",
"You can also change the windowtitel,"+up+up+
"(Default: Information)"+up+up+
"center the text and use the requester"+up+up+
"on your own position: x=25 / y=20","Fantastic",5,25,20);
ret:=rtEZRequestA("Alternatively, you can center the"\10"requester on the screen."\10"Check out 'reqtools.doc' for all the possibilities.",